home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-222.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  125 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12499);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0411");
  13.  
  14.  name["english"] = "RHSA-2004-222: arts";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated kdelibs packages that fix telnet URI handler and mailto URI handler
  21.   file vulnerabilities are now available.
  22.  
  23.   The kdelibs packages include libraries for the K Desktop Environment.
  24.  
  25.   KDE Libraries include: kdecore (KDE core library), kdeui (user interface),
  26.   kfm (file manager), khtmlw (HTML widget), kio (Input/Output, networking),
  27.   kspell (spelling checker), jscript (javascript), kab (addressbook), kimgio
  28.   (image manipulation). Konqueror is a file manager and Web browser for the
  29.   K Desktop Environment (KDE).
  30.  
  31.   iDEFENSE identified a vulnerability in the Opera web browser that could
  32.   allow remote attackers to create or truncate arbitrary files. The KDE team
  33.   has found two similar vulnerabilities that also exist in KDE.
  34.  
  35.   A flaw in the telnet URI handler may allow options to be passed to the
  36.   telnet program, resulting in creation or replacement of files. An attacker
  37.   could create a carefully crafted link such that when opened by a victim it
  38.   creates or overwrites a file with the victim\'s permissions.
  39.  
  40.   A flaw in the mailto URI handler may allow options to be passed to the
  41.   kmail program. These options could cause kmail to write to the file system
  42.   or to run on a remote X display. An attacker could create a carefully
  43.   crafted link in such a way that access may be obtained to run arbitrary
  44.   code as the victim.
  45.  
  46.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  47.   assigned the name CAN-2004-0411 to these issues.
  48.  
  49.   Note: Red Hat Enterprise Linux 2.1 is only vulnerable to the mailto URI
  50.   flaw as a previous update shipped without a telnet.protocol file.
  51.  
  52.   All users of KDE are advised to upgrade to these erratum packages, which
  53.   contain a backported patch for these issues.
  54.  
  55.  
  56.  
  57.  
  58. Solution : http://rhn.redhat.com/errata/RHSA-2004-222.html
  59. Risk factor : High';
  60.  
  61.  script_description(english:desc["english"]);
  62.  
  63.  summary["english"] = "Check for the version of the arts packages";
  64.  script_summary(english:summary["english"]);
  65.  
  66.  script_category(ACT_GATHER_INFO);
  67.  
  68.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  69.  family["english"] = "Red Hat Local Security Checks";
  70.  script_family(english:family["english"]);
  71.  
  72.  script_dependencies("ssh_get_info.nasl");
  73.  
  74.  script_require_keys("Host/RedHat/rpm-list");
  75.  exit(0);
  76. }
  77.  
  78. include("rpm.inc");
  79. if ( rpm_check( reference:"arts-2.2.2-11", release:"RHEL2.1") )
  80. {
  81.  security_hole(0);
  82.  exit(0);
  83. }
  84. if ( rpm_check( reference:"kdelibs-2.2.2-11", release:"RHEL2.1") )
  85. {
  86.  security_hole(0);
  87.  exit(0);
  88. }
  89. if ( rpm_check( reference:"kdelibs-devel-2.2.2-11", release:"RHEL2.1") )
  90. {
  91.  security_hole(0);
  92.  exit(0);
  93. }
  94. if ( rpm_check( reference:"kdelibs-sound-2.2.2-11", release:"RHEL2.1") )
  95. {
  96.  security_hole(0);
  97.  exit(0);
  98. }
  99. if ( rpm_check( reference:"kdelibs-sound-devel-2.2.2-11", release:"RHEL2.1") )
  100. {
  101.  security_hole(0);
  102.  exit(0);
  103. }
  104. if ( rpm_check( reference:"kdelibs-3.1.3-6.4", release:"RHEL3") )
  105. {
  106.  security_hole(0);
  107.  exit(0);
  108. }
  109. if ( rpm_check( reference:"kdelibs-devel-3.1.3-6.4", release:"RHEL3") )
  110. {
  111.  security_hole(0);
  112.  exit(0);
  113. }
  114.  
  115. if ( rpm_exists(rpm:"arts-", release:"RHEL2.1") )
  116. {
  117.  set_kb_item(name:"CAN-2004-0411", value:TRUE);
  118. }
  119. if ( rpm_exists(rpm:"arts-", release:"RHEL3") )
  120. {
  121.  set_kb_item(name:"CAN-2004-0411", value:TRUE);
  122. }
  123.  
  124. set_kb_item(name:"RHSA-2004-222", value:TRUE);
  125.